home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form1
- Caption = "Key Generator for Volatility's CrackersConvert v1.0 by Eternal Bliss"
- ClientHeight = 2355
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 6165
- ControlBox = 0 'False
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 2355
- ScaleWidth = 6165
- StartUpPosition = 3 'Windows Default
- Begin VB.CommandButton Command3
- Caption = "&Copy to Clipboard"
- BeginProperty Font
- Name = "Arial"
- Size = 12
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 495
- Left = 2160
- TabIndex = 3
- Top = 1560
- Width = 2295
- End
- Begin VB.CommandButton Command2
- Caption = "&Quit"
- BeginProperty Font
- Name = "Arial"
- Size = 12
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 495
- Left = 4680
- TabIndex = 4
- Top = 1560
- Width = 1215
- End
- Begin VB.TextBox Text1
- BeginProperty Font
- Name = "Arial"
- Size = 12
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 375
- Left = 2280
- TabIndex = 1
- Top = 240
- Width = 2415
- End
- Begin VB.CommandButton Command1
- Caption = "&Get Password"
- BeginProperty Font
- Name = "Arial"
- Size = 12
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 495
- Left = 120
- TabIndex = 2
- Top = 1560
- Width = 1815
- End
- Begin VB.Label Label3
- AutoSize = -1 'True
- Caption = "Your Password Is:"
- BeginProperty Font
- Name = "Arial"
- Size = 12
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 270
- Left = 120
- TabIndex = 5
- Top = 840
- Width = 1860
- End
- Begin VB.Label Label2
- AutoSize = -1 'True
- Caption = "Enter Your &Handle :"
- BeginProperty Font
- Name = "Arial"
- Size = 12
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 270
- Left = 120
- TabIndex = 0
- Top = 240
- Width = 1995
- End
- Begin VB.Label Label1
- BorderStyle = 1 'Fixed Single
- BeginProperty Font
- Name = "Arial Black"
- Size = 14.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 495
- Left = 2280
- TabIndex = 6
- Top = 840
- Width = 3735
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- On Error Resume Next
- Dim han, Decy
- han = Text1.Text
- If han = "" Then
- MsgBox "You have to enter something!!", vbOKOnly + vbCritical, "Handle field cannot be left empty"
- GoTo Nex
- End If
- Decy = Asc(han)
- Decy = Decy * 20
- Label1.Caption = "REG-" & Decy & "-CODE"
- End Sub
- Private Sub Command2_Click()
- End Sub
- Private Sub Command3_Click()
- Clipboard.Clear
- Clipboard.SetText Label1.Caption
- End Sub
-